home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Programming / Python-1.4 / Python1.4_Source / Modules / newmodule.c < prev    next >
C/C++ Source or Header  |  1996-12-15  |  6KB  |  222 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its
  8. documentation for any purpose and without fee is hereby granted,
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI or Corporation for National Research Initiatives or
  13. CNRI not be used in advertising or publicity pertaining to
  14. distribution of the software without specific, written prior
  15. permission.
  16.  
  17. While CWI is the initial source for this software, a modified version
  18. is made available by the Corporation for National Research Initiatives
  19. (CNRI) at the Internet address ftp://ftp.python.org.
  20.  
  21. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  22. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  23. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  24. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  25. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  26. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  27. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  28. PERFORMANCE OF THIS SOFTWARE.
  29.  
  30. ******************************************************************/
  31.  
  32. /* Module new -- create new objects of various types */
  33.  
  34. #include "allobjects.h"
  35. #include "compile.h"
  36.  
  37. #include "protos/newmodule_protos.h"
  38.  
  39. static char new_instance_doc[] =
  40. "Create an instance object from (CLASS, DICT) without calling its __init__().";
  41.  
  42. static object *
  43. new_instance(unused, args)
  44.     object* unused;
  45.     object* args;
  46. {
  47.     object* klass;
  48.     object *dict;
  49.     instanceobject *inst;
  50.     if (!newgetargs(args, "O!O!",
  51.             &Classtype, &klass,
  52.             &Dicttype, &dict))
  53.         return NULL;
  54.     inst = NEWOBJ(instanceobject, &Instancetype);
  55.     if (inst == NULL)
  56.         return NULL;
  57.     INCREF(klass);
  58.     INCREF(dict);
  59.     inst->in_class = (classobject *)klass;
  60.     inst->in_dict = dict;
  61.     return (object *)inst;
  62. }
  63.  
  64. static char new_im_doc[] =
  65. "Create a instance method object from (FUNCTION, INSTANCE, CLASS).";
  66.  
  67. static object *
  68. new_instancemethod(unused, args)
  69.     object* unused;
  70.     object* args;
  71. {
  72.     object* func;
  73.     object* self;
  74.     object* classObj;
  75.  
  76.     if (!newgetargs(args, "O!O!O!",
  77.             &Functype, &func,
  78.             &Instancetype, &self,
  79.             &Classtype, &classObj))
  80.         return NULL;
  81.     return newinstancemethodobject(func, self, classObj);
  82. }
  83.  
  84. /* XXX These internal interfaces have changed -- who'll fix this code? */
  85. #if 0
  86.  
  87. static char new_function_doc[] =
  88. "Create a function object from (CODE, GLOBALS, [NAME, ARGCOUNT, ARGDEFS]).";
  89.  
  90. static object *
  91. new_function(unused, args)
  92.     object* unused;
  93.     object* args;
  94. {
  95.     object* code;
  96.     object* globals;
  97.     object* name = None;
  98.     int argcount = -1;
  99.     object* argdefs = None;
  100.     funcobject* newfunc;
  101.  
  102.     if (!newgetargs(args, "O!O!|SiO!",
  103.             &Codetype, &code,
  104.             &Mappingtype, &globals,
  105.             &name,
  106.             &argcount,
  107.             &Tupletype, &argdefs))
  108.         return NULL;
  109.  
  110.     newfunc = (funcobject *)newfuncobject(code, globals);
  111.     if (newfunc == NULL)
  112.         return NULL;
  113.  
  114.     if (name != None) {
  115.         XINCREF(name);
  116.         XDECREF(newfunc->func_name);
  117.         newfunc->func_name = name;
  118.     }
  119.     newfunc->func_argcount = argcount;
  120.     if (argdefs != NULL) {
  121.         XINCREF(argdefs);
  122.         XDECREF(newfunc->func_argdefs);
  123.         newfunc->func_argdefs  = argdefs;
  124.     }
  125.  
  126.     return (object *)newfunc;
  127. }
  128. #endif
  129.  
  130. static char new_code_doc[] =
  131. "Create a code object from (ARGCOUNT, NLOCALS, FLAGS, CODESTRING, CONSTANTS, NAMES, VARNAMES, FILENAME, NAME).";
  132.  
  133. static object *
  134. new_code(unused, args)
  135.     object* unused;
  136.     object* args;
  137. {
  138.     int argcount;
  139.     int nlocals;
  140.     int flags;
  141.     object* code;
  142.     object* consts;
  143.     object* names;
  144.     object* varnames;
  145.     object* filename;
  146.     object* name;
  147.   
  148. #if 0
  149.     if (!newgetargs(args, "SO!O!SS",
  150.             &code, &Tupletype, &consts, &Tupletype, &names,
  151.             &filename, &name))
  152.         return NULL;
  153.     return (object *)newcodeobject(code, consts, names, filename, name);
  154. #else
  155.     if (!newgetargs(args, "iiiSO!O!O!SS",
  156.             &argcount, &nlocals, &flags,    /* These are new */
  157.             &code, &Tupletype, &consts, &Tupletype, &names,
  158.             &Tupletype, &varnames,        /* These are new */
  159.             &filename, &name))
  160.         return NULL;
  161.     return (object *)newcodeobject(argcount, nlocals, flags,
  162.         code, consts, names, varnames, filename, name);
  163. #endif
  164. }
  165.  
  166. static char new_module_doc[] =
  167. "Create a module object from (NAME).";
  168.  
  169. static object *
  170. new_module(unused, args)
  171.     object* unused;
  172.     object* args;
  173. {
  174.     char *name;
  175.   
  176.     if (!newgetargs(args, "s", &name))
  177.         return NULL;
  178.     return newmoduleobject(name);
  179. }
  180.  
  181. static char new_class_doc[] =
  182. "Create a class object from (NAME, BASE_CLASSES, DICT).";
  183.  
  184. static object *
  185. new_class(unused, args)
  186.     object* unused;
  187.     object* args;
  188. {
  189.     object * name;
  190.     object * classes;
  191.     object * dict;
  192.   
  193.     if (!newgetargs(args, "SO!O!", &name, &Tupletype, &classes,
  194.             &Mappingtype, &dict))
  195.         return NULL;
  196.     return newclassobject(classes, dict, name);
  197. }
  198.  
  199. static struct methodlist new_methods[] = {
  200.     {"instance",        new_instance,        1, new_instance_doc},
  201.     {"instancemethod",    new_instancemethod,    1, new_im_doc},
  202. #if 0
  203.     {"function",        new_function,        1, new_function_doc},
  204. #endif
  205.     {"code",        new_code,        1, new_code_doc},
  206.     {"module",        new_module,        1, new_module_doc},
  207.     {"classobj",        new_class,        1, new_class_doc},
  208.     {NULL,            NULL}        /* sentinel */
  209. };
  210.  
  211. char new_doc[] =
  212. "Functions to create new objects used by the interpreter.\n\
  213. \n\
  214. You need to know a great deal about the interpreter to use this!";
  215.  
  216. void
  217. initnew()
  218. {
  219.     initmodule4("new", new_methods, new_doc, (object *)NULL,
  220.             PYTHON_API_VERSION);
  221. }
  222.